home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 076-100 / 079 / auxhandler / aux.doc < prev    next >
Text File  |  1995-03-13  |  2KB  |  60 lines

  1.  
  2.  Aux-Handler V1.0     (c) Steve Drew 1987
  3.  ----------------
  4.  
  5. I.  Desciption:
  6.  
  7.      - Installs as a dos handler to control the serial port as a console.
  8.      - Support all relevent dos packets including WaitForChar and 
  9.        ACTION_SCREEN_MODE. 
  10.      - To your process it looks just like a CON: handler, screening 
  11.        control chars doing CRLF translations and handling deletes ect...
  12.      - Can be made into a RAW console via ACTION_SCREEN_MODE, it then
  13.        acts like a RAW console which does not echo characters or handle
  14.        control chars, but just passes all keys entered back to the process.
  15.        This would allow you to implement a ANSI style screen editor like
  16.        maybe MicroEMACS 3.x to work through AUX:. Now thats a multiuser
  17.        system!
  18.  
  19. II.  Installation:
  20.  
  21.      1. Insert the included MOUNTLIST file into you DEVS:MOUNTLST
  22.  
  23.      2. Copy the Aux-Handler to the l: directory
  24.  
  25.      3. Enter Mount AUX: to load the driver.
  26.  
  27.  
  28. III  Using
  29.  
  30.      - 'NEWCLI AUX:' will start a cli on the Serial port.    
  31.  
  32.      - <BS> <DEL> both delete last char typed.
  33.  
  34.      - ^X or ^U delete entire line.
  35.  
  36.      - ^S / ^Q stop/start screen display (if XON/XOFF selected under prefs.)
  37.  
  38. IV   Notes:
  39.  
  40.      - Setups':    
  41.         The Aux-Handler opens the serial port with its current
  42.         settings (as set up in preferences).
  43.         However you may specify if you want ECHO, CRLF, or
  44.         RAW Mode on/off via specifiying keyword 'Set':
  45.             Newcli AUX:Set/E:[On/Off]/C:[On/Off]/R:[On/Off]
  46.         for example to set Raw off, Echo off and CRLF on.
  47.             Newcli AUX:Set/e:off/c:on/r:off
  48.             
  49.         Case is insensitive. The default if any parameters
  50.         not specified is:
  51.             Echo ON, Raw Off, CRLF ON.
  52.     
  53.      - Killing A CLI:
  54.         Normally you just do a ENDCLI. However if you had
  55.         some one in over a modem or fired it up by mistake
  56.         you can force an ENDCLI command to be sent to the
  57.         process by doing a 'ECHO >AUX:ENDCLI' from another
  58.         CLI.
  59.     
  60.